home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Diamond Collection / The Diamond Collection (Software Vault)(Digital Impact).ISO / cdr42 / smixc111.zip / XMS.H < prev   
Text File  |  1995-02-11  |  700b  |  26 lines

  1. /* ██ XMS.H ███████████████████████████████████████████████████████████████ */
  2.  
  3.   int xms_installed(void);
  4.   void xms_init(void);
  5.  
  6.   unsigned int xms_getversion(void);
  7.   unsigned int xms_getfreemem(void);
  8.  
  9.   int xms_allocate(int far *handle, unsigned int size);
  10.   int xms_reallocate(int handle, unsigned int newsize);
  11.   int xms_free(int far *handle);
  12.  
  13.   typedef struct
  14.     {
  15.       unsigned long length;
  16.       unsigned int  sourcehandle;
  17.       unsigned long sourceoffset;
  18.       unsigned int  desthandle;
  19.       unsigned long destoffset;
  20.     } MOVEPARAMS;
  21.  
  22.   int xms_move(MOVEPARAMS far *params);
  23.  
  24. /* ████████████████████████████████████████████████████████████████████████ */
  25.  
  26.